#karinna Thompson
#Nov 13, 2022
#CpSc 1011
#Sec 002
#Lab 10
#Compiles multi-module programs, runs executables and removes both the executable and ppm files.

lab10: mainDriver.c getHeader.c fillImageArray.c writeHeader.c writePixels.c defs.h
		gcc -Wall -o lab10 getHeader.c mainDriver.c fillImageArray.c writeHeader.c writePixels.c

run: lab10 
		./lab10 < Disney.pnm

clean:
		rm lab10
		rm -f Disney.pnm
